home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / PNC-ATL1.ZIP / ASCII / ASCII.PPE (.txt) < prev    next >
Encoding:
PCBoard Programming Language Executable  |  1996-09-10  |  1021 b   |  97 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 3.1O (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.  
  21. ;------------------------------------------------------------------------------
  22.  
  23.     :LABEL001
  24.     Color 7
  25.     GetUser
  26.     If (U_Expert == 0) Then
  27.         Cls
  28.         DispFile PPEPath() + "ASCII.MNU", 0
  29.     Endif
  30.     PrintLn "┌──[Conference: @CONFNAME@─ -  -"
  31.     Print "└───[Minutes Left: @MINLEFT@ ]─[COMMAND: "
  32.     :LABEL002
  33.     InputStr "_", STRING001, "@X0F", 65, Mask_Ascii(), 0 + 16
  34.     Tokenize STRING001
  35.     If (STRING001 == "") Then
  36.         If (U_Expert == 0) Goto LABEL002
  37.     Endif
  38.     Newline
  39.     Command 1, STRING001
  40.     GetUser
  41.     If (U_Expert == 0) Then
  42.         Newline
  43.         Wait
  44.     Endif
  45.     Newline
  46.     STRING001 = ""
  47.     Goto LABEL001
  48.     End
  49.  
  50. ;------------------------------------------------------------------------------
  51. ;
  52. ; Usage report (before postprocessing)
  53. ;
  54. ; ■ Statements used :
  55. ;
  56. ;    1       End
  57. ;    1       Cls
  58. ;    1       Wait
  59. ;    1       Color 
  60. ;    5       Goto 
  61. ;    1       Let 
  62. ;    1       Print 
  63. ;    1       PrintLn 
  64. ;    4       If 
  65. ;    1       DispFile 
  66. ;    2       GetUser
  67. ;    1       InputStr 
  68. ;    3       Newline
  69. ;    1       Tokenize 
  70. ;    1       Command 
  71. ;
  72. ;
  73. ; ■ Functions used :
  74. ;
  75. ;    2       +
  76. ;    4       ==
  77. ;    3       !
  78. ;    1       Mask_Ascii()
  79. ;    1       PPEPath()
  80. ;
  81. ;------------------------------------------------------------------------------
  82. ;
  83. ; Analysis flags : No flag
  84. ;
  85. ;------------------------------------------------------------------------------
  86. ;
  87. ; Postprocessing report
  88. ;
  89. ;    0       For/Next
  90. ;    0       While/EndWhile
  91. ;    3       If/Then or If/Then/Else
  92. ;    0       Select Case
  93. ;
  94. ;------------------------------------------------------------------------------
  95. ;                 AEGiS Corp - Break the routines, code against the machines!
  96. ;------------------------------------------------------------------------------
  97.